home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / gfx / x11 / x3270_3_2_16.lha / amiga_src / keymapc.h < prev    next >
C/C++ Source or Header  |  2007-12-08  |  989b  |  30 lines

  1. /*
  2.  * Copyright 1996, 1999 by Paul Mattes.
  3.  *  Permission to use, copy, modify, and distribute this software and its
  4.  *  documentation for any purpose and without fee is hereby granted,
  5.  *  provided that the above copyright notice appear in all copies and that
  6.  *  both that copyright notice and this permission notice appear in
  7.  *  supporting documentation.
  8.  */
  9.  
  10. /*
  11.  *    keymapc.h
  12.  *        Global declarations for keymap.c.
  13.  */
  14.  
  15. #define PA_KEYMAP_TRACE        PA_PFX "KeymapTrace"
  16. #define PA_END            PA_PFX "End"
  17.  
  18. extern struct trans_list *temp_keymaps;
  19.  
  20. extern char *keymap_trace;
  21.  
  22. extern void do_keymap_display(Widget w, XtPointer userdata, XtPointer calldata);
  23. extern void keymap_init(const char *km);
  24. extern XtTranslations lookup_tt(const char *name, char *table);
  25. extern void PA_End_action(Widget w, XEvent *event, String *params,
  26.     Cardinal *num_params);
  27. extern void PA_KeymapTrace_action(Widget w, XEvent *event, String *params,
  28.     Cardinal *num_params);
  29. extern int temporary_keymap(char *k);
  30.